home *** CD-ROM | disk | FTP | other *** search
/ Network Support Library / RoseWare - Network Support Library.iso / btrieve / btool100.exe / INCLUDE.EXE / BTRIEVE.H < prev    next >
Text File  |  1990-08-03  |  575b  |  35 lines

  1. /* 
  2.     btrieve.h
  3.  
  4.     Copyright (c) 1989, by Jeffrey K Regan
  5.     ALL RIGHTS RESERVED.
  6.  
  7.     Revision History:
  8.     -----------------
  9. */
  10.  
  11. #ifndef _BOOLEAN_DEFINED
  12. /* typedefs for various values    */
  13.  
  14. typedef  unsigned char    byte;
  15. typedef  unsigned int    word;
  16. typedef  unsigned long    dword;
  17. typedef  int   boolean;
  18.  
  19. #define _BOOLEAN_DEFINED
  20. #endif
  21.  
  22. /* data types and constants */
  23. #ifndef TRUE
  24. #define TRUE    1
  25. #define FALSE    0
  26. #define OK        0
  27. #define ERROR    -1
  28. #endif
  29.  
  30. #define b_DEFAULT_EXTENSION "DTA"
  31.  
  32. #include <btr_stru.h>
  33. #include <btr_ops.h>
  34. #include <btr_decl.h>
  35.